AliYun Cloud NLS
阿里云自然语言处理 Node 模块。
目录
开始
from npm
$ npm install/aliyun-nls
长文本语音合成
用例
1 | const { AliyunTTS } = require(/aliyun-nls'); |
了解更多 TTS Define.
函数
AliyunTTS
有如下方法:
checkConfig(): Promise<boolean>
返回值 Promise<boolean>
- 返回阿里云语音配置密钥是否有效。
1 | const checkRlt = await _aliyunTTS.checkConfig(); |
task(text: string, options?: AliyunTTS.TTSOption): Promise<string>
text
string - 要转换的文本。options
NLSOption (optional) - 高级设置。appKey
string (optional) - 应用 key。
返回值 Promise<string>
- 返回转换任务 ID。
status(taskId: string, appKey?: string): Promise<AliyunTTS.TTSComplete>
查询转换状态。
taskId
string - 任务 ID。appKey
string (optional) - 应用 Key。
返回值 Promise<AliyunTTS.TTSComplete>
- 转换状态。
1 | const taskId = await _aliyunTTS.task('你好,世界!', { |
taskSync(text: string, options: AliyunTTS.TTSOption, interval?: number): Promise<AliyunTTS.TTSComplete>;
同步返回合成结果。
text
string - 要转换的文本。options
NLSOption - 高级设置。interval
number (optional) - 检查转换状态的轮训事件间隔(秒)。
返回值 Promise<AliyunTTS.TTSComplete>
- 转换状态。
1 | const rlt = await _aliyunTTS.taskSync('你好,世界!', { |
定义
AliyunTTS.TTSOption
appKey
- 应用 Key,可选。format
- 音频编码格式,支持 pcm/wav/mp3 格式,默认是 pcm。sample_rate
- 音频采样率,支持 16000Hz 和 8000Hz,默认是 16000Hz。voice
- 发音人,默认是 xiaoyun。更多发音人请参见接口说明。volume
- 音量,范围是 0~100,默认 50。speech_rate
- 语速,范围是 0-100,默认是 50。pitch_rate
- 语调,范围是 0-100,默认是 50。enable_subtitle
- 是否启用句级时间戳功能,默认值为 false。enable_notify
- 是否启用回调功能,默认值为 false。notify_url
- 回调服务的地址。当 enable_notify 取值为 true 时,本字段必填。URL 支持 HTTP/HTTPS 协议,Host 不能使用 IP 地址。
AliyunTTS.TTSComplete
task_id
string - 任务 ID。audio_address
string - 合成的音频 URL。notify_custom
string - 回调地址。sentences
json - 句级时间戳对象。appKey
: string - 使用的 APP Key。options
: AliyunTTS.TTSOption - 合成选项。text
: string - 待合成文本。startTime
: number - 合成开始时间(毫秒时间戳)。elapsed
: number - 合成耗时(毫秒)。
Author
funnyzak |
参考
License
Apache-2.0 License © 2021 funnyzak